www.gusucode.com > vc++ 远程控制示例源程序-源码程序 > vc++ 远程控制示例源程序-源码程序\code\PeerYouC\PeerSplitterWnd.cpp

    // PeerSplitterWnd.cpp : implementation file
// Download by http://www.NewXing.com

#include "stdafx.h"
#include "PeerYouC.h"
#include "PeerSplitterWnd.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CPeerSplitterWnd

CPeerSplitterWnd::CPeerSplitterWnd()
{
}

CPeerSplitterWnd::~CPeerSplitterWnd()
{
}


BEGIN_MESSAGE_MAP(CPeerSplitterWnd, CSplitterWnd)
	//{{AFX_MSG_MAP(CPeerSplitterWnd)
	ON_WM_LBUTTONDOWN()
	ON_WM_MOUSEMOVE()
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CPeerSplitterWnd message handlers

void CPeerSplitterWnd::OnLButtonDown(UINT nFlags, CPoint point) 
{
	// TODO: Add your message handler code here and/or call default
	return ;
	//CSplitterWnd::OnLButtonDown(nFlags, point);
}

void CPeerSplitterWnd::OnMouseMove(UINT nFlags, CPoint point) 
{
	// TODO: Add your message handler code here and/or call default
return ;	
//	CSplitterWnd::OnMouseMove(nFlags, point);
}